home *** CD-ROM | disk | FTP | other *** search
/ Action Games (2008) / akcnihry1.iso / AT-Robots 2.10 / TRANSMIT.AT2 < prev    next >
Encoding:
Text File  |  1998-12-13  |  508 b   |  13 lines

  1. #msg Transmits counter!
  2. opo P_channel, 1   ; Set to channel 1.
  3. xor     ax, ax     ; Set AX = 0
  4. :1
  5. delay   10         ; We want to delay between each transmit, and we put
  6.                    ; it at the beginning of the loop to give the receiver
  7.                    ; time to prepare at the beginning of the simulation.
  8.  
  9. inc     ax         ; AX = AX + 1
  10. err     ax         ; Display what we're about to transmit.
  11. int     I_transmit ; transmit AX over the radio.
  12. jmp     1          ; and start over.
  13.